[USER (data scientist)]: That looks good! But, a list would be perfect. Please generate the code with the output in list type.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd  
import pickle
from decision_company import read_csv_file, calculate_median, filter_by_condition, create_condition, logical_and, fetch_index, convert_to_list, fetch_column

# Load the dataset  
credit_customers = read_csv_file("credit_customers.csv")  
  
# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END

print(f"result_list: {result_list}")  

# save data
pickle.dump(result_list, open("./pred_result/result_list_3.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: You got it! Here's the code to turn the result into a list:

# MY SOLUTION BEGIN:
